/* ============ ADA Compound Scroll Animasyonları ============ */

/* Başlangıçta gizli / aşağıdan geliyor */
.slide-content,
.about-section .about-text,
.about-section .about-image,
.services .service-item,
.urunler-sec .urunler-title,
.urunler-sec .urunler-desc,
.urunler-sec .urun-card,
.stats-section .stats-title,
.stats-section .stat-box,
.neden-ada .title,
.neden-ada .desc,
.neden-ada .neden-card {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease-out,
        transform 0.7s ease-out,
        box-shadow 0.4s ease-out;
}

/* Görününce aktif olan sınıf */
.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hover efektleri */
.services .service-item:hover,
.urunler-sec .urun-card:hover,
.neden-ada .neden-card:hover,
.stats-section .stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* Sayaç kutuları */
.stats-section .stat-box {
    border-bottom: 3px solid #ffed01;
    background: #ffffff;
}

/* Slider başlık gölgesi */
.slide-content h2 {
    text-shadow: 0 4px 16px rgba(0,0,0,0.45);
}
